home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ARASAN_S.ZIP / COLOR.CPP < prev    next >
C/C++ Source or Header  |  1994-01-14  |  245b  |  14 lines

  1. #include "color.h"
  2.  
  3. char *Image( const ColorType color )
  4. {
  5.    static char *colortxt[2] = { "Black", "White" };
  6.    return colortxt[color];
  7. }
  8.  
  9. ostream & operator << (ostream &o, ColorType color)
  10. {
  11.    o << Image(color);
  12.    return o;
  13. }
  14.